home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / game / shoot / rdogz.lha / R_Dogz / HD-Install next >
Text File  |  1999-04-09  |  1KB  |  38 lines

  1. ;HDPP Installer
  2.  
  3. (welcome "Welcome to the Reservoir Dogz installation utility. This utility\n"
  4.          "is designed to require little if no interaction from you.")
  5. (message "Welcome to the Reservoir Dogz installation program.\n\n"
  6.          "This process is automatic and the only input required from you "
  7.          "is the place which you want to install the program.\n\n"
  8.          "Reservoir Dogz is ©1999 Joker Developments Limited.") 
  9.  
  10. (set #destdir
  11.  (askdir
  12.   (prompt "Select a directory to install Reservoir Dogz to (a directory will be created.)")
  13.   (help "Reservoir Dogz needs to have it's own directory if it is going to be "
  14.         "installed successfully. The installer will create the directory "
  15.         "called R_Dogz on it's own, so don't worry.")
  16.   (default "Work:Games")
  17.  )
  18. )
  19.  
  20. (set #dest
  21.  (tackon #destdir "R_Dogz/")
  22. )
  23. (set @default-dest #dest)
  24. (makedir #dest
  25.  (prompt "Creating directory "#dest".")
  26.  (help @makedir-help)
  27.  (infos)
  28. )
  29.  
  30. (working "Installing 'Reservoir Dogz' to "#dest"...")
  31. (copyfiles
  32.  (prompt "Installing 'Reservoir Dogz' to "#dest"...")
  33.  (help @copyfiles-help)
  34.  (source "")
  35.  (dest #dest)
  36.  (all)
  37.  (infos)
  38. )